}
}
-/*
- * gdk_device_get_position:
- * @device: pointer device to query status about.
- * @x: (out): location to store root window X coordinate of @device
- * @y: (out): location to store root window Y coordinate of @device
- *
- * Gets the current location of @device in double precision.
- */
-void
-gdk_device_get_position (GdkDevice *device,
- double *x,
- double *y)
-{
- g_return_if_fail (GDK_IS_DEVICE (device));
- g_return_if_fail (device->source != GDK_SOURCE_KEYBOARD);
-
- _gdk_device_query_state (device, NULL, NULL, x, y, NULL);
-}
-
/**
* gdk_device_get_surface_at_position:
* @device: pointer #GdkDevice to query info to.
guint32 time_);
void gdk_device_ungrab (GdkDevice *device,
guint32 time_);
-void gdk_device_get_position (GdkDevice *device,
- double *x,
- double *y);
int gdk_device_get_n_axes (GdkDevice *device);
gboolean gdk_device_get_axis (GdkDevice *device,
double *axes,
GDK_NOTE (DND, g_print ("_gdk_win32_surface_drag_begin\n"));
- gdk_device_get_position (device, &px, &py);
+ _gdk_device_query_state (device, NULL, NULL, &px, &py, NULL);
x_root = round (px + dx);
y_root = round (py + dy);